home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / getchar.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  2.4 KB  |  56 lines

  1. /* getchar.c */
  2. char_u *get_recorded __ARGS((void));
  3. char_u *get_inserted __ARGS((void));
  4. int stuff_empty __ARGS((void));
  5. void typeahead_noflush __ARGS((int c));
  6. void flush_buffers __ARGS((int typeahead));
  7. void ResetRedobuff __ARGS((void));
  8. void saveRedobuff __ARGS((void));
  9. void restoreRedobuff __ARGS((void));
  10. void AppendToRedobuff __ARGS((char_u *s));
  11. void AppendToRedobuffLit __ARGS((char_u *s));
  12. void AppendCharToRedobuff __ARGS((int c));
  13. void AppendNumberToRedobuff __ARGS((long n));
  14. void stuffReadbuff __ARGS((char_u *s));
  15. void stuffReadbuffLen __ARGS((char_u *s, long len));
  16. void stuffReadbuffSpec __ARGS((char_u *s));
  17. void stuffcharReadbuff __ARGS((int c));
  18. void stuffnumReadbuff __ARGS((long n));
  19. int start_redo __ARGS((long count, int old_redo));
  20. int start_redo_ins __ARGS((void));
  21. void stop_redo_ins __ARGS((void));
  22. int ins_typebuf __ARGS((char_u *str, int noremap, int offset, int nottyped, int silent));
  23. int typebuf_typed __ARGS((void));
  24. int typebuf_maplen __ARGS((void));
  25. void del_typebuf __ARGS((int len, int offset));
  26. int alloc_typebuf __ARGS((void));
  27. void free_typebuf __ARGS((void));
  28. int save_typebuf __ARGS((void));
  29. int openscript __ARGS((char_u *name));
  30. int using_script __ARGS((void));
  31. void updatescript __ARGS((int c));
  32. int vgetc __ARGS((void));
  33. int safe_vgetc __ARGS((void));
  34. int vpeekc __ARGS((void));
  35. int vpeekc_nomap __ARGS((void));
  36. int vpeekc_any __ARGS((void));
  37. int char_avail __ARGS((void));
  38. void vungetc __ARGS((int c));
  39. int inchar __ARGS((char_u *buf, int maxlen, long wait_time));
  40. int fix_input_buffer __ARGS((char_u *buf, int len, int script));
  41. int do_map __ARGS((int maptype, char_u *arg, int mode, int abbrev));
  42. int get_map_mode __ARGS((char_u **cmdp, int forceit));
  43. void map_clear __ARGS((char_u *cmdp, char_u *arg, int forceit, int abbr));
  44. int map_to_exists __ARGS((char_u *str, char_u *modechars));
  45. int map_to_exists_mode __ARGS((char_u *rhs, int mode));
  46. char_u *set_context_in_map_cmd __ARGS((expand_T *xp, char_u *cmd, char_u *arg, int forceit, int isabbrev, int isunmap, cmdidx_T cmdidx));
  47. int ExpandMappings __ARGS((regmatch_T *regmatch, int *num_file, char_u ***file));
  48. int check_abbr __ARGS((int c, char_u *ptr, int col, int mincol));
  49. int makemap __ARGS((FILE *fd, buf_T *buf));
  50. int put_escstr __ARGS((FILE *fd, char_u *str, int what));
  51. void check_map_keycodes __ARGS((void));
  52. char_u *check_map __ARGS((char_u *keys, int mode, int exact));
  53. void init_mappings __ARGS((void));
  54. void add_map __ARGS((char_u *map, int mode));
  55. /* vim: set ft=c : */
  56.